home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / GotoDialog.h < prev    next >
C/C++ Source or Header  |  1990-11-28  |  579b  |  31 lines

  1. #ifndef GotoDialog_First
  2. #ifdef __GNUG__
  3. #pragma once
  4. #endif
  5. #define GotoDialog_First
  6.  
  7. #include "GotoDialog_e.h"
  8. #include "Dialog.h"
  9.  
  10. //---- GotoDialog ---------------------------------------------------------------
  11.  
  12. class GotoDialog : public Dialog {
  13.     class TextView *view;
  14.     class NumItem *line;
  15.     int lineNo;
  16.     
  17.     VObject *DoCreateDialog();
  18.     void Control(int id, int, void *v);
  19. public:
  20.     MetaDef(GotoDialog);
  21.     
  22.     GotoDialog();
  23.     int ShowGotoDialog(class TextView*); 
  24.     void DoSetup(); 
  25.     GetLineNo()
  26.     { return lineNo; }
  27. };
  28.  
  29. #endif GotoDialog_First
  30.  
  31.